home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / windows2 / icobar.zip / TOOLDEMO < prev    next >
Text File  |  1992-01-09  |  601b  |  24 lines

  1. # make file for tooldemo.exe
  2.  
  3. all.res:
  4.     rc -r tooldemo.rc
  5.  
  6. # Update the object file if necessary
  7.  
  8. tooldemo.obj: tooldemo.c tooldemo.h toolwnd.h
  9.    cl -c -AS -Gsw -Od -Zpe tooldemo.c
  10.  
  11. # Update the executable file if necessary, and if so, add the resource back in.
  12.  
  13. all.exe:
  14.     link /NOD tooldemo,,NUL, libw slibcew toolwnd, tooldemo.def
  15.     rc tooldemo.res
  16.  
  17. # If the .res file is new and the .exe file is not, update the resource.
  18. # Note that the .rc file can be updated without having to either 
  19. # compile or link the file.
  20.  
  21. tooldemo.exe: tooldemo.res
  22.     rc tooldemo.res
  23. 
  24.